home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / pcflist.arc / PC-FLIST.PRO < prev   
Encoding:
Text File  |  1986-01-04  |  6.7 KB  |  206 lines

  1. * The ATTR profile command defines the display attributes to be used for
  2. * various portions of the FDIR display screen. Each display attribute value is
  3. * entered as a 2 digit hexadecimal value or "*", if the default is desired.
  4. * The ATTR command is described below;
  5. *
  6. *       ATTR  a  b  c  d  e  f  g  h
  7. *
  8. *       Where; a = title literals at top of display
  9. *              b = borders between display areas
  10. *              c = file information areas of display
  11. *              d = command input areas of display
  12. *              e = messages displayed in command input areas
  13. *              f = "Fnn" literals at bottom of display
  14. *              g = Function key names at bottom of display
  15. *              h = Entire screen when a DOS command or "/H" is executed
  16.  
  17. * attr 0f 07 07 0f 70 70 07 07    (Default attributes for MONOCHROME monitors)
  18. * attr 09 07 06 03 04 09 02 07    (Default attributes for COLOR monitors)
  19.  
  20. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  21.  
  22. * The CHAR profile command defines the character to be used to identify FDIR
  23. * commands or fileid functions within DOS commands. The character is entered
  24. * as a 1 punctuation character OTHER than "*", "=" or "?". This command
  25. * character MUST be "doubled-up" if it is to be part of the command text. For
  26. * example, if "/" is the character "FORMAT B: //V" results in "FORMAT B: /V".
  27. * The CHAR command is described below;
  28. *
  29. *       CHAR  a
  30. *
  31. *       Where; a = character denoting an FDIR command or fileid function
  32. *
  33.  
  34. * char /    (Default FDIR command character)
  35.  
  36. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  37.  
  38. * The DEFINE profile command defines the FDIR or DOS command to be assigned
  39. * to a given function key. Each function key is identified as "Fnn", "A-Fnn",
  40. * "C-Fnn" or "S-Fnn", followed by an equal sign, followed by the name to be
  41. * displayed for the function key, followed by the FDIR or DOS command text
  42. * to be assigned to the function key.
  43. * The DEFINE command is described below;
  44. *
  45. *       DEFINE  a  =  [b]  c
  46. *
  47. *       Where; a = function key being assigned
  48. *              b = name to be displayed in name area of display
  49. *              c = FDIR or DOS command text
  50.  
  51. define f1    = [Help]         /h
  52. define f2    = [Cancel]       /c
  53. define f3    = [Quit]         /q
  54. define f4    = [Edit]         edlin
  55. define f5    = [Sort Date]    /sd
  56. define f6    = [Sort Ext]     /se
  57. define f7    = [Sort Name]    /sn
  58. define f8    = [Sort Size]    /ss
  59. define f9    = [Refresh]      /r
  60. define f10   = [Execute]      /x
  61. define a-f1  = [Read A:]      /r a:
  62. define a-f2  = [Read B:]      /r b:
  63. define a-f3  = [Read C:]      /r c:
  64. define a-f4  =
  65. define a-f5  =
  66. define a-f6  = [Append A:]    /a a:
  67. define a-f7  = [Append B:]    /a b:
  68. define a-f8  = [Append C:]    /a c:
  69. define a-f9  =
  70. define a-f10 = [Find Next]    /f =
  71. define c-f1  = [Tree (All)]   /l /dpn
  72. define c-f2  = [Tree (DIRs)]  /l /dpn -d
  73. define c-f3  = [Prev Level]   /l-
  74. define c-f4  = [Next Level]   /l+
  75. define c-f5  =
  76. define c-f6  =
  77. define c-f7  =
  78. define c-f8  =
  79. define c-f9  =
  80. define c-f10 = [Run Program]  /dpn
  81. define s-f1  = [Copy To A:]   copy / a:
  82. define s-f2  = [Copy To B:]   copy / b:
  83. define s-f3  = [Copy To C:]   copy / c:
  84. define s-f4  =
  85. define s-f5  =
  86. define s-f6  =
  87. define s-f7  =
  88. define s-f8  =
  89. define s-f9  =
  90. define s-f10 = [Call DOS]     /o command
  91.  
  92. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  93.  
  94. * The EXECUTE profile command defines a FDIR or DOS command to be executed
  95. * during FDIR initialization. This is most useful for sorting the directory
  96. * into a given sequence prior to being displayed.
  97. * The EXECUTE command is described below;
  98. *
  99. *       EXECUTE  a
  100. *
  101. *       Where; a = FDIR or DOS command text
  102.  
  103. * execute /sd
  104.  
  105. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  106.  
  107. * The FILEID profile command defines the components to be used for creating
  108. * full fileids when inserting by "/" or appending to the end of a DOS command.
  109. * The fileid may consist of "D(rive)", "P(ath)", "N(ame)" and/or "E(xtension)".
  110. * The FILEID command is described below;
  111. *
  112. *       FILEID  a
  113. *
  114. *       Where; a = Any combination of "D", "P", "N" and/or "E"
  115.  
  116. * fileid dpne    (Default fileid components)
  117.  
  118. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  119.  
  120. * The MACRO profile command defines the "macro" text to be assigned to a given
  121. * alternate key. Each alternate key is identified as "A-x", followed by an
  122. * equal sign, followed by the text of the "macro" to be assigned to the key.
  123. * The MACRO command is described below;
  124. *
  125. *       MACRO  a  =  b
  126. *
  127. *       Where; a = alternate key being assigned
  128. *              b = "macro" text
  129.  
  130. macro a-a =
  131. macro a-b =
  132. macro a-c = copy /
  133. macro a-d =
  134. macro a-e = erase
  135. macro a-f = format
  136. macro a-g =
  137. macro a-h =
  138. macro a-i =
  139. macro a-j =
  140. macro a-k =
  141. macro a-l = label
  142. macro a-m = mkdir
  143. macro a-n =
  144. macro a-o =
  145. macro a-p = path
  146. macro a-q =
  147. macro a-r = rename
  148. macro a-s =
  149. macro a-t = type
  150. macro a-u =
  151. macro a-v =
  152. macro a-w =
  153. macro a-x =
  154. macro a-y =
  155. macro a-z =
  156. macro a-0 =
  157. macro a-1 =
  158. macro a-2 =
  159. macro a-3 =
  160. macro a-4 =
  161. macro a-5 =
  162. macro a-6 =
  163. macro a-7 =
  164. macro a-8 =
  165. macro a-9 =
  166.  
  167. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  168.  
  169. * The OPTION profile command defines various options to be used by FDIR. The
  170. * possible options are shown below;
  171. *
  172. *       CHDIR or NOCHDIR     - "CHDIR" before each DOS command
  173. *       ECHO or NOECHO       - "ECHO" DOS commands prior to execution
  174. *       HOLD or NOHOLD       - "HOLD" after DOS commands which create output
  175. *       PAUSE or NOPAUSE     - "PAUSE" before each DOS command (ESC to skip)
  176. *       RETRACE or NORETRACE - "RETRACE" synchronization required (Std. Color)
  177. *
  178. * The OPTION command is described below;
  179. *
  180. *       OPTION  a  b  c  d  e
  181. *
  182. *       Where; a = One of the options listed above
  183. *              b = One of the options listed above
  184. *              c = One of the options listed above
  185. *              d = One of the options listed above
  186. *              e = One of the options listed above
  187.  
  188. * option nochdir echo hold nopause retrace     (Default options in effect)
  189.  
  190. *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
  191.  
  192. * The SYNONYM profile command defines an alias for a DOS command. Each alias
  193. * is replaced by its true name prior to DOS command execution. A maximum of
  194. * 50 SYNONYM commands are allowed, others will be IGNORED.
  195. * The SYNONYM command is described below;
  196. *
  197. *       SYNONYM  a  b
  198. *
  199. *       Where; a = alias DOS command name
  200. *              b = true DOS command name
  201.  
  202. synonym c copy
  203. synonym e edlin
  204. synonym l type
  205. synonym r rename
  206.